home *** CD-ROM | disk | FTP | other *** search
/ Power Programmierung 2 / Power-Programmierung CD 2 (Tewi)(1994).iso / c / library / dos / communic / pcmail / main / screen.c < prev    next >
Encoding:
C/C++ Source or Header  |  1994-06-05  |  1.8 KB  |  111 lines

  1. /*++
  2.  
  3. /* NAME
  4.  
  5. /*      screen 3
  6.  
  7. /* SUMMARY
  8.  
  9. /*      often-used message strings
  10.  
  11. /* PROJECT
  12.  
  13. /*      pc-mail
  14.  
  15. /* PACKAGE
  16.  
  17. /*      mail
  18.  
  19. /* SYNOPSIS
  20.  
  21. /*      #include "screen.h"
  22.  
  23. /* DESCRIPTION
  24.  
  25. /*      Messages and strings used in more than one Screen structure
  26.  
  27. /*    are kept here.
  28.  
  29. /* SEE ALSO
  30.  
  31. /*      screen(5)       screen table structure
  32.  
  33. /*      kbdinp(3)      screen table interpreter
  34.  
  35. /* AUTHOR(S)
  36.  
  37. /*      W.Z. Venema
  38.  
  39. /*      Eindhoven University of Technology
  40.  
  41. /*      Department of Mathematics and Computer Science
  42.  
  43. /*      Den Dolech 2, P.O. Box 513, 5600 MB Eindhoven, The Netherlands
  44.  
  45. /* CREATION DATE
  46.  
  47. /*      Wed Apr  1 21:14:53 GMT+1:00 1987
  48.  
  49. /* LAST MODIFICATION
  50.  
  51. /*    90/01/22 13:02:34
  52.  
  53. /* VERSION/RELEASE
  54.  
  55. /*    2.1
  56.  
  57. /*--*/
  58.  
  59.  
  60.  
  61. #include "defs.h"
  62.  
  63. #include "screen.h"
  64.  
  65.  
  66.  
  67. /* general strings used in more than one Screen structure */
  68.  
  69.  
  70.  
  71. public char anykey[]    = "Press any key to continue";
  72.  
  73. public char initscreen[]= "Return to initial screen";
  74.  
  75. public char prevscreen[]= "Return to previous screen";
  76.  
  77. public char int_error[]    = "The program is confused";
  78.  
  79. public char pageup[]    = "Move screen one page upwards";
  80.  
  81. public char pagedn[]    = "Move screen one page downwards";
  82.  
  83. public char csrup[]    = "Move cursor upwards";
  84.  
  85. public char csrdn[]    = "Move cursor downwards";
  86.  
  87. public char getsummary[]= "Press ESC to cancel. Enter a one-line summary for identification:";
  88.  
  89. public char getaddr[]    = "Press ESC to cancel. Send message to:";
  90.  
  91. public char printcurr[]    = "Print this message";
  92.  
  93. public char delcurr[]    = "Delete this message";
  94.  
  95.  
  96.  
  97. /* we have a problem reading a mail message */
  98.  
  99.  
  100.  
  101. public char *m_msgread[] = {
  102.  
  103.     "",
  104.  
  105.     "Sorry, that message is no longer available",
  106.  
  107.     0,
  108.  
  109. };
  110.  
  111.